home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue40 / Threads / ThreadsDemo.dfm / ThreadsDemo.txt
Encoding:
Text File  |  1998-10-28  |  1.9 KB  |  109 lines

  1. object SoundDemoForm: TSoundDemoForm
  2.   Left = 222
  3.   Top = 110
  4.   BorderStyle = bsDialog
  5.   Caption = 'Multithreaded PC-speaker sounds demo...'
  6.   ClientHeight = 244
  7.   ClientWidth = 468
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OnCreate = FormCreate
  14.   PixelsPerInch = 96
  15.   TextHeight = 13
  16.   object Label1: TLabel
  17.     Left = 24
  18.     Top = 16
  19.     Width = 62
  20.     Height = 13
  21.     Caption = 'Added tasks:'
  22.   end
  23.   object Label2: TLabel
  24.     Left = 136
  25.     Top = 16
  26.     Width = 30
  27.     Height = 13
  28.     Caption = 'InBox:'
  29.   end
  30.   object Label3: TLabel
  31.     Left = 248
  32.     Top = 16
  33.     Width = 38
  34.     Height = 13
  35.     Caption = 'OutBox:'
  36.   end
  37.   object Label4: TLabel
  38.     Left = 360
  39.     Top = 16
  40.     Width = 57
  41.     Height = 13
  42.     Caption = 'Done tasks:'
  43.   end
  44.   object AddedTasksList: TListBox
  45.     Left = 24
  46.     Top = 32
  47.     Width = 97
  48.     Height = 153
  49.     TabStop = False
  50.     ItemHeight = 13
  51.     TabOrder = 0
  52.   end
  53.   object DoneTasksList: TListBox
  54.     Left = 360
  55.     Top = 32
  56.     Width = 97
  57.     Height = 153
  58.     TabStop = False
  59.     ItemHeight = 13
  60.     TabOrder = 1
  61.   end
  62.   object InBoxList: TListBox
  63.     Left = 136
  64.     Top = 32
  65.     Width = 97
  66.     Height = 153
  67.     TabStop = False
  68.     ItemHeight = 13
  69.     TabOrder = 2
  70.   end
  71.   object OutBoxList: TListBox
  72.     Left = 248
  73.     Top = 32
  74.     Width = 97
  75.     Height = 153
  76.     TabStop = False
  77.     ItemHeight = 13
  78.     TabOrder = 3
  79.   end
  80.   object AddButton: TButton
  81.     Left = 24
  82.     Top = 200
  83.     Width = 75
  84.     Height = 25
  85.     Caption = '&Add Task'
  86.     Default = True
  87.     TabOrder = 4
  88.     OnClick = AddButtonClick
  89.   end
  90.   object ClearButton: TButton
  91.     Left = 136
  92.     Top = 200
  93.     Width = 75
  94.     Height = 25
  95.     Caption = '&Clear Lists'
  96.     TabOrder = 5
  97.     OnClick = ClearButtonClick
  98.   end
  99.   object MultithreadedCB: TCheckBox
  100.     Left = 248
  101.     Top = 200
  102.     Width = 97
  103.     Height = 17
  104.     Caption = '&Multithreaded'
  105.     State = cbChecked
  106.     TabOrder = 6
  107.   end
  108. end
  109.